-
Re: How to create reports according to the Month
I would do: =IF(MONTH(TODAY()) + 3 > 12, MONTH(TODAY()) + 3 - 12, MONTH(TODAY()) + 3) =IF(MONTH(TODAY()) + 4 > 12, MONTH(TODAY()) + 4 - 12, MONTH(TODAY()) + 4) etc etc1 · -
Re: Complicated IF Formula
=if(and([constant column]9 > [constant column]8,[constant column]9 >[constant column]7,[constant column]7<1),"Green", if(and([constant column]8>[constant column]9,[constant colu…1 · -
Re: Complicated IF Formula
I would do something like: =if(and([constant column]3 > [constant column]2,[constant column]3 >[constant column]1,[constant column]1<1),"Green", if(and([constant column]2>[const…1 · -
Re: Complicated IF Formula
Basically it says if Total SI is greater than Total PIOP AND greater than NYIOP AND NYIOP is less than 1, Green. If Total PIOP is greater than Total SI AND greater than NYIOP, Yellow. Anything else, …1 · -
Re: Complicated IF Formula
Sorry I just noticed that you labeled the rows 7, 8, 9 so change my column numbers accordingly.1 ·